home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / By the Book / Mac C Primer V2 / 6.1 - MyStarter / CDragPane.h < prev    next >
Text File  |  1990-05-02  |  385b  |  21 lines

  1. #define _H_CDragPane
  2.  
  3. #include "CPane.h"
  4.  
  5. extern Boolean        gIsScrolling;
  6.  
  7. struct CDragPane : CPane
  8. {
  9.     int            patNumber;
  10.     
  11.     void        IDragPane(    Point            corner,
  12.                             int                height,
  13.                             int                width,
  14.                             int                patNum,
  15.                             CView            *anEnclosure,
  16.                             CBureaucrat        *aSupervisor );
  17.                             
  18.     void        Draw( Rect *area );
  19.     
  20.     void        DoClick( Point hitPt, short modifierKeys, long when );
  21. };